local Players = game:GetService("Players") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "JaxyHubGui" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") local mainFrame = Instance.new("Frame") mainFrame.Name = "MainFrame" mainFrame.Size = UDim2.new(0, 260, 0, 110) mainFrame.Position = UDim2.new(0.02, 0, 0.4, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(15, 85, 185) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 10) uiCorner.Parent = mainFrame local uiStroke = Instance.new("UIStroke") uiStroke.Color = Color3.fromRGB(255, 255, 255) uiStroke.Thickness = 2 uiStroke.Parent = mainFrame local titleLabel = Instance.new("TextLabel") titleLabel.Name = "TitleLabel" titleLabel.Size = UDim2.new(1, 0, 0, 45) titleLabel.Position = UDim2.new(0, 0, 0, 5) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "JAXY HUB MADE BY GAHEEM" titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextSize = 15 titleLabel.Font = Enum.Font.SourceSansBold titleLabel.TextWrapped = true titleLabel.Parent = mainFrame local timeLabel = Instance.new("TextLabel") timeLabel.Name = "TimeLabel" timeLabel.Size = UDim2.new(1, 0, 0, 50) timeLabel.Position = UDim2.new(0, 0, 0, 50) timeLabel.BackgroundTransparency = 1 timeLabel.Text = "Time: 00:00:00" timeLabel.TextColor3 = Color3.fromRGB(255, 255, 255) timeLabel.TextSize = 22 timeLabel.Font = Enum.Font.SourceSansBold timeLabel.Parent = mainFrame local startTime = os.time() RunService.Heartbeat:Connect(function() local currentTime = os.time() - startTime local hours = math.floor(currentTime / 3600) local minutes = math.floor((currentTime % 3600) / 60) local seconds = currentTime % 60 timeLabel.Text = string.format("Time: %02d:%02d:%02d", hours, minutes, seconds) end)